home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / containers / ApplicationControlBar.as next >
Text File  |  2014-03-27  |  2KB  |  75 lines

  1. package mx.containers
  2. {
  3.    import flash.events.Event;
  4.    import mx.core.Application;
  5.    import mx.core.mx_internal;
  6.    import mx.styles.IStyleClient;
  7.    
  8.    use namespace mx_internal;
  9.    
  10.    public class ApplicationControlBar extends ControlBar
  11.    {
  12.       
  13.       mx_internal static const VERSION:String = "3.0.0.0";
  14.        
  15.       
  16.       private var dockChanged:Boolean = false;
  17.       
  18.       private var _dock:Boolean = false;
  19.       
  20.       public function ApplicationControlBar()
  21.       {
  22.          super();
  23.       }
  24.       
  25.       public function set dock(param1:Boolean) : void
  26.       {
  27.          if(_dock != param1)
  28.          {
  29.             _dock = param1;
  30.             dockChanged = true;
  31.             invalidateProperties();
  32.             dispatchEvent(new Event("dockChanged"));
  33.          }
  34.       }
  35.       
  36.       public function resetDock(param1:Boolean) : void
  37.       {
  38.          _dock = !param1;
  39.          dock = param1;
  40.       }
  41.       
  42.       [Bindable("dockChanged")]
  43.       public function get dock() : Boolean
  44.       {
  45.          return _dock;
  46.       }
  47.       
  48.       override protected function commitProperties() : void
  49.       {
  50.          super.commitProperties();
  51.          if(dockChanged)
  52.          {
  53.             dockChanged = false;
  54.             if(parent is Application)
  55.             {
  56.                Application(parent).dockControlBar(this,_dock);
  57.             }
  58.          }
  59.       }
  60.       
  61.       override public function set enabled(param1:Boolean) : void
  62.       {
  63.          var _loc2_:Object = mx_internal::blocker;
  64.          super.enabled = param1;
  65.          if(mx_internal::blocker && mx_internal::blocker != _loc2_)
  66.          {
  67.             if(mx_internal::blocker is IStyleClient)
  68.             {
  69.                IStyleClient(mx_internal::blocker).setStyle("borderStyle","applicationControlBar");
  70.             }
  71.          }
  72.       }
  73.    }
  74. }
  75.